home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
04
/
7
/
DISK0478.ZIP
/
GCOPY.DOC
< prev
next >
Wrap
Text File
|
1984-03-25
|
1KB
|
34 lines
/* GCOPY.C
Copyright (c) 1984, Gordon Lee Waite
413 W. Pleasant Street
Maquoketa, Iowa 52060
summary: gcopy d:xxxxxxx.xxx t:
arguments: d:xxxxxxxx.xxx specifies the ambiguous file
name used for the target search
if the d:xxxxxxxx.xxx is left out, GCOPY
assumes the users wants *.*
t: specifies the drive for the output
description: GCOPY is used to copy files from one drive to
another. The user may enter an ambiguous
file request and drive specifier. The program
then goes through the matching files it finds
in the directory and asks the user if he wants
to copy over this file. The program keeps
track of the desired files, then copies them
after all have been specified.
This program was compiled using the Manz Aztec C Compiler
The compile and link process is as follows:
c86 gcopy.c
as86 -o gcopy.o gcopy.asm
ln -o gcopy.exe gcopy.o dosa.lib videoa.lib libc.lib
multdel gcopy.o gcopy.asm